home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Objects / protos / methodobject.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-25  |  353 b   |  7 lines

  1. static void meth_dealloc ( PyCFunctionObject *m );
  2. static PyObject *meth_getattr ( PyCFunctionObject *m , char *name );
  3. static PyObject *meth_repr ( PyCFunctionObject *m );
  4. static int meth_compare ( PyCFunctionObject *a , PyCFunctionObject *b );
  5. static long meth_hash ( PyCFunctionObject *a );
  6. static PyObject *listmethodchain ( PyMethodChain *chain );
  7.